body {
    background-color: steelblue;
}


/************************* 
CONTAINER
**************************/

.container {
    padding: 0 15px;
    max-width: 100%;
}

.container--lg--width {
    max-width: 1060px;
}

section.project,
section.job {
    padding: 60px 0;
}

.section-heading__title {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 30px;
    text-transform: uppercase;
}


/************************* 
HEADER
**************************/

a {
    text-decoration: none;
    color: #1b1b1b;
}

header {
    position: sticky;
    top: 0;
    z-index: 5;
}

.nav {
    margin-bottom: -65px;
    background-color: teal;
    height: 100px;
}

.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav__list:after {
    content: "";
    display: table;
    clear: both;
}

.nav__list li {
    display: inline-block;
}

.nav__left {
    float: left;
    margin: 10px 15px;
}

.nav__right {
    float: right;
}

.nav__link {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    display: block;
    padding: 20px 12px;
    border-bottom: 2px solid #27bc9c;
}

.nav__active .nav__link {
    color: 2px solid #27bc9c;
}

a:hover {
    color: rgb(0, 61, 61)
}


/************************* 
BANNER
**************************/

.banner {
    height: 720px;
    background: url(../../assets/img/banner.jpg);
    background-size: cover;
}

.banner__details {
    color: #fff;
    margin: 0;
    text-align: center;
    /* line-height: 119px; */
    font-size: 48px;
    /* line-height: 32px; */
}

@keyframes slideFadeIn {
    100% {
        opacity: 1;
        margin-top: 0;
    }
}


/************************* 
PROJECT
**************************/

section.project {
    padding: 60px 0;
}

section.project .container {
    max-width: 1060px;
    margin: 0 auto;
}


/************************* 
CARD
**************************/

.card {
    background: #fff;
    min-height: 120px;
    margin-bottom: 30px;
}

.card__body {
    margin: 10px 0 0 0;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.card__body img {
    height: 100%;
    width: 100%;
}

.card__footer {
    padding: 10px;
}

.card__footer h6 {
    margin: 5px 0;
}

.card__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #27bc9c;
    transition: all 0.33s ease;
    padding-top: 34px;
    transform: translateY(-100%);
}

.card__overlay-details {
    text-align: center;
    height: 112px;
}

.card__icon {
    font-size: 80px;
    color: #fff;
    font-weight: 600;
}

.card__links {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.card:hover .card__overlay {
    transform: translateY(0);
    opacity: 0.5;
}


/************************* 
JOB SECTION 
**************************/

.job__textarea {
    border: 1px solid#ddd;
    height: 150px;
    resize: none;
    width: 100%;
}

.job__textarea:focus {
    border: rgb(0, 61, 61);
    outline: none;
}

.job__btn {
    border: 1px solid #ddd;
    background-color: #27bc9c;
    color: #fff;
    border-radius: 0;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 14px;
    cursor: pointer;
}


/************************* 
ASIDE
**************************/

aside.cv {
    position: fixed;
    width: 80%;
    height: 100%;
    background: #fff;
    top: 0;
    right: 0;
    z-index: 10;
    transition: all 0.33s ease-in-out;
    padding: 0 15px;
    overflow-y: scroll;
    transform: translate3d(100%, 0, 0);
}


/************************* 
FOOTER
**************************/

.footer {
    background-color: #fff;
    padding: 15px 0;
}

.footer__list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer__list li {
    display: inline-block;
}

.footer__left {
    float: left;
    padding-top: 20px;
}

.footer__right {
    float: right;
}

.footer__links {
    padding: 20px 12px;
    display: block;
    color: #222;
    text-decoration: none;
}